home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / programs / write / config / english / rwmsg.config < prev    next >
Text File  |  1996-11-23  |  701b  |  57 lines

  1. CONFIG RWMsg;
  2.  
  3. IMPORT Cursor,
  4.        Mouse,
  5.        RWM_Project;
  6.  
  7. PREFS
  8.   _lockStdKeys:=TRUE;
  9.   _scrRelLeft:=79;
  10.   _scrRelTop:=78;
  11.   _scrRelWidth:=540;
  12.   _scrRelHeight:=412;
  13.   _syntaxColor:=TRUE;
  14.  
  15.  
  16. HOOK CLOSEWINDOW
  17.   UMS.RereadGroup;
  18. END CLOSEWINDOW;
  19.  
  20. BUTTON "mail"
  21.   UMS.WriteMsg(-1,FALSE);
  22. END;
  23.  
  24. BUTTON "news"
  25.   UMS.WriteMsg(-1,TRUE);
  26. END;
  27.  
  28. BUTTONSPACE;
  29.  
  30. BUTTON "remail"
  31.   UMS.ReplyCurrentMsg(FALSE);
  32. END;
  33.  
  34. BUTTON "followmail"
  35.   MessageOk("Not implemented!");
  36. END;
  37.  
  38. BUTTON "renews"
  39.   UMS.ReplyCurrentMsg(TRUE);
  40. END;
  41.  
  42. BUTTONSPACE;
  43.  
  44. BUTTON "export"
  45.   Standard.SaveBlock;
  46. END;
  47.  
  48. BUTTONSPACE;
  49.  
  50. BUTTON "copy"
  51.   CopyArea([%MARKA,%MARKA],[%MARKB,%MARKB],"0");
  52. END;
  53.  
  54. PATTERN "^ *[>:].*" 1 0 BOLD;
  55.  
  56. END RWMsg.
  57.